home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1996 #15 / Monster Media Number 15 (Monster Media)(July 1996).ISO / netmail / nwrth210.zip / SOUP < prev    next >
Text File  |  1995-04-15  |  719b  |  35 lines

  1. #!/bin/sh
  2. # Usage: soup [ upload ] 
  3. # Process reply packet if requested
  4. if [ $# -gt 0 ]
  5. then
  6.   if [ $1 = "upload" ]
  7.   then
  8.     echo start your upload of yourbbs.rep now!
  9.     rz
  10.     unzip -U yourbbs.rep
  11.     uqwk -m -n +L -RREPLIES
  12.     rm yourbbs.rep
  13.   fi
  14. fi
  15.  
  16. # Check for an existing packet
  17. if [ -f "yourbbs.zip" ]
  18. then
  19.   echo Warning - found an unsent yourbbs.zip file!
  20.   sz -u yourbbs.zip
  21. fi
  22.  
  23. # Copy your newsgroups file to a backup directory as a precation
  24. cp .newsrc backup
  25.  
  26. # Collect your unread mail and news in SOUP format
  27. # Change -B8000 to -B0 for no limit on packet size
  28. uqwk +m +n -z +L -B8000
  29.  
  30. # Zip it up, and delete files if successful
  31. zip -m yourbbs AREAS *.MSG
  32.  
  33. # Download it to your PC
  34. sz -u yourbbs.zip
  35.